home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_10 / 1010018b < prev    next >
Text File  |  1992-08-11  |  242b  |  16 lines

  1.  
  2. Listing 7 -- the file strcpy.c
  3.  
  4. /* strcpy function */
  5. #include <string.h>
  6.  
  7. char *(strcpy)(char *s1, const char *s2)
  8.     {    /* copy char s2[] to s1[] */
  9.     char *s = s1;
  10.  
  11.     for (s = s1; (*s++ = *s2++) != '\0'; )
  12.         ;
  13.     return (s1);
  14.     }
  15.  
  16.